• Parameters

    • input: {
          funcInput: SellInput;
          contract: string;
          positionType: "support" | "oppose";
          qty: number;
          state?: State;
          expected?: number;
      }
      • funcInput: SellInput
      • contract: string
      • positionType: "support" | "oppose"
      • qty: number
      • Optional state?: State
      • Optional expected?: number

    Returns Promise<{
        contract: string;
        funcInput: {
            expected: number;
            function: "sell";
            positionType: "support" | "oppose";
            qty?: number;
        };
    }>